home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Window Events / UpdateEvent.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  196 b   |  14 lines  |  [TEXT/CWIE]

  1. // UpdateEvent.cp
  2.  
  3. #ifndef UpdateEvent_h
  4. #include "UpdateEvent.h"
  5. #endif
  6. #ifndef AbstractWindow_h
  7. #include "AbstractWindow.h"
  8. #endif
  9.  
  10. void UpdateEvent::Respond() const
  11.   {
  12.     Window().Update();
  13.   }
  14.